版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2013/11/03/2013-11-03-CODE 103 Substring with Concatenation of All Words/
You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatenation of each word in L exactly once and without any intervening
characters.
For example, given:
S: "barfoothefoobarman"
L: ["foo", "bar"]
You should return the indices: [0,9]
.
(order does not matter).
|
|